home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1999 March
/
EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso
/
earcd
/
devel
/
vbcc-68k-src
/
machines
/
amiga68k
/
libsrc
/
stdio
/
fprintf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-01
|
218b
|
12 lines
#include <stdio.h>
#include <stdarg.h>
int fprintf(FILE *stream,const char *format,...)
{ int retval;
va_list args;
va_start(args,format);
retval=vfprintf(stream,format,args);
va_end(args);
return retval;
}